home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1996 July / Designer's Club 1996 July.iso / mac / Idea Source / Road.DIR / 00159.ls < prev    next >
Encoding:
Text File  |  1996-05-20  |  943 b   |  45 lines

  1. on exitFrame
  2.   go(the frame)
  3.   if rollOver(3) then
  4.     puppetSprite(3, 1)
  5.     set the castNum of sprite 3 to 148
  6.     updateStage()
  7.   else
  8.     puppetSprite(3, 0)
  9.   end if
  10.   if rollOver(4) then
  11.     puppetSprite(4, 1)
  12.     set the castNum of sprite 4 to 149
  13.     updateStage()
  14.   else
  15.     puppetSprite(4, 0)
  16.   end if
  17.   if rollOver(5) then
  18.     puppetSprite(5, 1)
  19.     set the castNum of sprite 5 to 151
  20.     updateStage()
  21.   else
  22.     puppetSprite(5, 0)
  23.   end if
  24.   if rollOver(6) then
  25.     puppetSprite(6, 1)
  26.     set the castNum of sprite 6 to 150
  27.     updateStage()
  28.   else
  29.     puppetSprite(6, 0)
  30.   end if
  31.   if (the mouseV > 130) and (the mouseH > 150) and (the mouseV < 450) and (the mouseH < 580) then
  32.     cursor(200)
  33.     set the locV of sprite 8 to the mouseV
  34.     set the locH of sprite 8 to the mouseH
  35.     updateStage()
  36.     if the mouseDown then
  37.       sound stop 1
  38.       cursor(-1)
  39.       go(the frame + 1)
  40.     end if
  41.   else
  42.     cursor(-1)
  43.   end if
  44. end
  45.